home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / doom / quake.zip / UZI.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1997-05-10  |  1KB  |  51 lines

  1. @echo off
  2. cls
  3. echo Installation for UZI Quake Mod version 1.0
  4. echo.
  5.  
  6. if [%1] == [] goto usage
  7. if not [%2] == [] goto usage
  8.  
  9. if exist %1\quake.exe goto gooddir
  10.  
  11. :baddir
  12. echo Quake does not appear to be installed in %1.
  13. echo.
  14. goto usage
  15.  
  16. :gooddir
  17. md %1\uzi
  18. md %1\uzi\sound
  19. md %1\uzi\sound\weapons
  20. md %1\uzi\progs
  21. copy progs.dat %1\uzi
  22. copy uzi.txt %1\uzi
  23. copy guncock.wav %1\uzi\sound\weapons
  24. copy v_shot.mdl %1\uzi\progs
  25.  
  26.  
  27. cd %1
  28.  
  29. goto end
  30.  
  31. :usage
  32. echo Usage:
  33. echo.
  34. echo  INSTALL dir_name [ENTER]
  35. echo.
  36. echo  where dir_name is the directory where Quake is installed.
  37. echo.
  38. echo  e.g.  INSTALL C:\QUAKE
  39. echo.
  40. :end
  41. echo I hope you Enjoy Uzi for Quake
  42. echo matthew wright
  43. echo ----------------------------------------------------
  44. echo http;//www.geocities.com/TimesSquare/Dungeon/4078/
  45. echo ----------------------------------------------------
  46. echo Email: Punk93@mymail.net -OR- Punk25@juno.com
  47. echo ----------------------------------------------------
  48. echo.
  49. echo type QUAKE -GAME UZI to play.
  50. echo Enjoy yer uzi!
  51.